home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / ttymsg.c < prev    next >
C/C++ Source or Header  |  1999-05-14  |  1KB  |  58 lines

  1. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  2.  *
  3.  * This file is part of slrn.
  4.  *
  5.  * Slrn is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2, or (at your option) any
  8.  * later version.
  9.  * 
  10.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  11.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13.  * for more details.
  14.  * 
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with Slrn; see the file COPYING.  If not, write to the Free
  17.  * Software Foundation, 59 Temple Place - Suite 330, 
  18.  * Boston, MA  02111-1307, USA.
  19.  */
  20.  
  21. #include "config.h"
  22.  
  23. #include <stdio.h>
  24. #include <string.h>
  25.  
  26. #include "ttymsg.h"
  27.  
  28. void slrn_tty_vmessage (FILE *fp, char *fmt, va_list ap)
  29. {
  30.    static FILE *last_fp;
  31.    
  32.    if ((fp == stdout) || (last_fp == stdout)) fputc ('\n', fp);
  33.    (void) vfprintf(fp, fmt, ap);
  34.    if (fp == stderr) fputc ('\n', fp);
  35.    fflush (fp);
  36.    
  37.    last_fp = fp;
  38. }
  39.  
  40. void slrn_tty_message (char *fmt, ...)
  41. {
  42.    va_list ap;
  43.    
  44.    va_start (ap, fmt);
  45.    slrn_tty_vmessage (stdout, fmt, ap);
  46.    va_end (ap);
  47. }
  48.  
  49. void slrn_tty_error (char *fmt, ...)
  50. {
  51.    va_list ap;
  52.    
  53.    va_start (ap, fmt);
  54.    slrn_tty_vmessage (stderr, fmt, ap);
  55.    va_end (ap);
  56. }
  57.  
  58.